Rename the tips_data_list field back. (#447214)
authorMatthias Clasen <mclasen@redhat.com>
Sat, 21 Jul 2007 13:19:11 +0000 (13:19 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sat, 21 Jul 2007 13:19:11 +0000 (13:19 +0000)
2007-07-21  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtktooltips.[hc]: Rename the tips_data_list field
        back.  (#447214)

svn path=/trunk/; revision=18520

ChangeLog
gtk/gtktooltips.c
gtk/gtktooltips.h

index b22d75aff673f71f5b1ae7ea52e15ba3c4b7d545..bf9a0453973fa010088bb988f8282299f77edc98 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-07-21  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtktooltips.[hc]: Rename the tips_data_list field
+       back.  (#447214)
+
 2007-07-21  Matthias Clasen  <mclasen@redhat.com>
 
        * configure.in: Bump version
index 17af2736ee8fb98dda5f353854bc6381e1ea58f7..1a560cd9a2ec2f51f42afd68ff3675c04f62ccc4 100644 (file)
@@ -91,7 +91,7 @@ gtk_tooltips_init (GtkTooltips *tooltips)
 
   tooltips->tip_window = NULL;
   tooltips->active_tips_data = NULL;
-  tooltips->_tips_data_list = NULL;
+  tooltips->tips_data_list = NULL;
 
   tooltips->delay = DEFAULT_DELAY;
   tooltips->enabled = TRUE;
index c88a4acd03fe1de6d375a9b768369ea884e359fa..a86085652ca20822645166a06ee2f575c8af8921 100644 (file)
@@ -63,7 +63,7 @@ struct _GtkTooltips
   GtkWidget *tip_window;
   GtkWidget *tip_label;
   GtkTooltipsData *active_tips_data;
-  GList *_tips_data_list; /* unused */
+  GList *tips_data_list; /* unused */
 
   guint   delay : 30;
   guint          enabled : 1;